iT邦幫忙

0

學習JavaScript第五天--數字與字串相加

  • 分享至 

  • xImage
  •  

數字與字串相加,會自動轉型,變成字串

let myName = "小美" ;
let myWeight = "50" ;
let total = myName + myWeight ;
console.log(typeof total);
console.log("hi,我是"+myName+", 我的體重"+myWeight+"公斤 ")

https://ithelp.ithome.com.tw/upload/images/20211008/201406153xaxbdSUCm.jpg

NaN 產生時機:
用字串乘於數值,會出現NaN,因為相乘要都是數值,不是數值相乘,就會出現NaN,NaN(Not a Number,非數),表示未定義或不可表示的值。
https://ithelp.ithome.com.tw/upload/images/20211008/20140615jaqsY9FPxN.jpg
https://ithelp.ithome.com.tw/upload/images/20211008/20140615Ndp6NrkcJi.jpg

let age2 = "30";

變成字串而不是number型別,可加上「parseInt」,就可以轉換成number型別
https://ithelp.ithome.com.tw/upload/images/20211008/20140615kKX5OvSrxC.jpg


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言